home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / fileutils_3_3.lha / fileutils-3.3 / lib / xgetcwd.c < prev    next >
C/C++ Source or Header  |  1992-08-01  |  2KB  |  71 lines

  1. /* xgetcwd.c -- return current directory with unlimited length
  2.    Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by David MacKenzie, djm@gnu.ai.mit.edu. */
  19.  
  20. #include <stdio.h>
  21. #include <errno.h>
  22. #include <sys/types.h>
  23. #include "pathmax.h"
  24.  
  25. #if !defined(_POSIX_VERSION) && !defined(USG)
  26. char *getwd ();
  27. #define getcwd(buf, max) getwd (buf)
  28. #else
  29. char *getcwd ();
  30. #endif
  31.  
  32. /* Amount to increase buffer size by in each try. */
  33. #define PATH_INCR 32
  34.  
  35. char *xmalloc ();
  36. char *xrealloc ();
  37.  
  38. /* Return the current directory, newly allocated, arbitrarily long.
  39.    Return NULL and set errno on error. */
  40.  
  41. char *
  42. xgetcwd ()
  43. {
  44.   char *cwd;
  45.   char *ret;
  46.   long path_max;
  47.  
  48.   errno = 0;
  49.   path_max = PATH_MAX;
  50.   path_max += 2;        /* The getcwd docs say to do this. */
  51.  
  52.   cwd = (char *) xmalloc (path_max);
  53.  
  54.   errno = 0;
  55.   while ((ret = getcwd (cwd, path_max)) == NULL && errno == ERANGE)
  56.     {
  57.       path_max += PATH_INCR;
  58.       cwd = xrealloc (cwd, path_max);
  59.       errno = 0;
  60.     }
  61.  
  62.   if (ret == NULL)
  63.     {
  64.       int save_errno = errno;
  65.       free (cwd);
  66.       errno = save_errno;
  67.       return NULL;
  68.     }
  69.   return cwd;
  70. }
  71.